home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / src / Tools / glimpse-2.1 / agrep / dummyfilters.c < prev    next >
Text File  |  1995-05-16  |  1KB  |  115 lines

  1. /* Copyright (c) 1994 Burra Gopal, Udi Manber.  All Rights Reserved. */
  2.  
  3. /* bgopal: used if search in compressed text files is not being performed */
  4. /* Always say could not be compressed */
  5. quick_tcompress()
  6. {
  7.     return 0;
  8. }
  9.  
  10. /* Always say could not be uncompressed */
  11. quick_tuncompress()
  12. {
  13.     return 0;
  14. }
  15.  
  16. /* Always return uncompressible */
  17. tuncompressible()
  18. {
  19.     return 0;
  20. }
  21.  
  22. /* Always return uncompressible */
  23. tuncompressible_filename()
  24. {
  25.     return 0;
  26. }
  27.  
  28. /* Always return uncompressible */
  29. tuncompressible_file()
  30. {
  31.     return 0;
  32. }
  33.  
  34. /* Always return uncompressible */
  35. tuncompressible_fp()
  36. {
  37.     return 0;
  38. }
  39.  
  40. exists_tcompressed_word()
  41. {
  42.     return -1;
  43. }
  44.  
  45. unsigned char *
  46. forward_tcompressed_word(begin, end, delim, len, outtail, flags)
  47. unsigned char *begin, *end, *delim;
  48. int len, outtail, flags;
  49. {
  50.     return begin;
  51. }
  52.  
  53. unsigned char *
  54. backward_tcompressed_word(end, begin, delim, len, outtail, flags)
  55. unsigned char *begin, *end, *delim;
  56. int len, outtail, flags;
  57. {
  58.     return end;
  59. }
  60.  
  61. tcompress_file()
  62. {
  63.     return 0;
  64. }
  65.  
  66. tuncompress_file()
  67. {
  68.     return 0;
  69. }
  70.  
  71. initialize_tcompress()
  72. {
  73.     return 0;
  74. }
  75.  
  76. initialize_tuncompress()
  77. {
  78.     return 0;
  79. }
  80.  
  81. initialize_common()
  82. {
  83.     return 0;
  84. }
  85.  
  86. uninitialize_tuncompress()
  87. {
  88.     return 0;
  89. }
  90.  
  91. compute_dictionary()
  92. {
  93.     return 0;
  94. }
  95.  
  96. uninitialize_common()
  97. {
  98.     return 0;
  99. }
  100.  
  101. uninitialize_tcompress()
  102. {
  103.     return 0;
  104. }
  105.  
  106. set_usemalloc()
  107. {
  108.     return 0;
  109. }
  110.  
  111. unset_usemalloc()
  112. {
  113.     return 0;
  114. }
  115.